home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Ultimative Software-P…i Collection 1996 & 1997
/
Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso
/
g
/
gnu_c
/
incl98.zoo
/
timeb.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-02-20
|
416 b
|
26 lines
#ifndef _TIMEB_H
#define _TIMEB_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
struct timeb {
long time; /* seconds since Jan 1., 1970 */
short millitm; /* milliseconds since "time" */
short timezone; /* minutes west of GMT */
short dstflag; /* if time zone can have DST */
};
__EXTERN int ftime __PROTO((struct timeb *));
#ifdef __cplusplus
}
#endif
#endif